﻿/*
 * random methods
 */
native void seed( int s );

native double random();
native int random( int max );
native int random( int min, int max );
